home *** CD-ROM | disk | FTP | other *** search
/ Erotic Games: Memory / Erotic Games: Memory.iso / mac / air_installers / AdobeAIR.exe / setup.swf / scripts / mx / managers / IDragManager.as < prev    next >
Text File  |  2009-02-12  |  710b  |  25 lines

  1. package mx.managers
  2. {
  3.    import flash.events.MouseEvent;
  4.    import mx.core.DragSource;
  5.    import mx.core.IFlexDisplayObject;
  6.    import mx.core.IUIComponent;
  7.    
  8.    public interface IDragManager
  9.    {
  10.        
  11.       
  12.       function showFeedback(param1:String) : void;
  13.       
  14.       function doDrag(param1:IUIComponent, param2:DragSource, param3:MouseEvent, param4:IFlexDisplayObject = null, param5:Number = 0, param6:Number = 0, param7:Number = 0.5, param8:Boolean = true) : void;
  15.       
  16.       function get isDragging() : Boolean;
  17.       
  18.       function getFeedback() : String;
  19.       
  20.       function acceptDragDrop(param1:IUIComponent) : void;
  21.       
  22.       function endDrag() : void;
  23.    }
  24. }
  25.